Solving One-Step Inequalities

Introduction

What Is a One-Step Inequality?

Inverse Operations Refresher

To isolate the variable, we undo the operation being applied to it.

Examples:

Solving Addition and Subtraction Inequalities

Example 1: $x + 7 > 10$

Example 2: $x - 4 \le 9$

Important: Adding or subtracting the same number on both sides does not change the direction of the inequality.

Solving Multiplication and Division Inequalities

Example 1: $4x < 20$

Example 2: $\frac{x}{3} \ge 2$

Important rule:

Example 3: $-2x > 8$

Common Mistakes to Avoid

Calculator

Solving inequalities

  • Inequalities can be solved via the $\operatorname{solveLinearInequality}()$ function
  • Note that the inequality must be wrapped in quotes to stop the calculator evaluating it first
solveLinearInequality('x + 9 < 20') solveLinearInequality('x - 6 >= 4')

Exercises

  1. Solve the inequality: $x + 9 < 20$

    Solution

    $x < 11$
    Subtract $9$ from both sides.
  2. Solve: $x - 6 \ge 4$

    Solution

    $x \ge 10$
    Add $6$ to both sides.
  3. Solve: $5x > 30$

    Solution

    $x > 6$
    Divide both sides by $5$.
  4. Solve: $\frac{x}{4} \le 3$

    Solution

    $x \le 12$
    Multiply both sides by $4$.
  5. Solve the inequality and state whether the inequality flips: $-3x < 12$

    Solution

    $x > -4$
    Divide by $-3$ and flip the inequality.
  6. Graph the solution to $x > -2$ on a number line.

    Solution

    Open circle at $-2$, shade to the right.
  7. True or false: Solving $-x > 5$ requires flipping the inequality.

    Solution

    True — dividing by $-1$ flips the inequality.
  8. Solve: $2 + x \le 10$

    Solution

    $x \le 8$
    Subtract $2$ from both sides.